@media screen and (max-width: 640px) and (min-width: 0px) {
  .newsBox {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
  }

  .news {
    width: 90%;
    margin: 30px 0;
  }

  .newsTxt .txt {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .numCount ul {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
  }

  .numCount ul li {
    width: 50%;
  }

  .indc {
    text-align: center;
  }
}